home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-03-26 | 421 b | 22 lines | [TEXT/R*ch] |
- // This subclass of Component defines the custom behavior of the Hello
- // page used as a response for the Main page’s action method. It also
- // declares a visitorName instance variable.
-
- import next.util.*;
- import next.wo.*;
-
- public class Hello extends Component
- {
- String visitorName;
-
- public void setVisitorName (String name)
- {
- visitorName = name;
- }
-
- public String visitorName ()
- {
- return visitorName;
- }
- }
-